projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
93ff838
)
* lisp/emacs-lisp/comp.el (comp-compute-dominator-tree): Fix.
author
Andrea Corallo
<akrl@sdf.org>
Fri, 1 Jan 2021 11:00:04 +0000
(12:00 +0100)
committer
Andrea Corallo
<akrl@sdf.org>
Fri, 1 Jan 2021 13:07:27 +0000
(14:07 +0100)
lisp/emacs-lisp/comp.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/comp.el
b/lisp/emacs-lisp/comp.el
index 227333f72c86f5b8ac784048170a975aeedcf2a7..848bcf70cdbeba5c9305ed275facd9135a84bc15 100644
(file)
--- a/
lisp/emacs-lisp/comp.el
+++ b/
lisp/emacs-lisp/comp.el
@@
-2650,7
+2650,7
@@
blocks."
(when-let ((blocks (comp-func-blocks comp-func))
(entry (gethash 'entry blocks))
;; No point to go on if the only bb is 'entry'.
- (bb
1 (gethash 'bb_1
blocks)))
+ (bb
0 (gethash 'bb_0
blocks)))
(cl-loop with rev-bb-list = (comp-collect-rev-post-order entry)
with changed = t
while changed